home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / MEMMON.DIR / 00022_Main.ls < prev    next >
Encoding:
Text File  |  2003-04-21  |  7.2 KB  |  274 lines

  1. on startMovie
  2.   CheckForValidName()
  3.   InitGlobals()
  4.   InitConditions()
  5.   InitPuppets()
  6. end
  7.  
  8. on CheckForValidName
  9.   Flag = 0
  10.   myMovie = the movieName
  11.   repeat with temp = 1 to count(the windowList)
  12.     if window(temp).title = "memmon" then
  13.       Flag = 1
  14.     end if
  15.   end repeat
  16.   if (the windowList = []) or not Flag then
  17.     alert("Please open the memmon with the title Memmon.  Like this: From the message window, type - Open window " & QUOTE & "memmon" & QUOTE & ".   Open the main movie script for help.           Thank you, the management.        Attempting to auto open. ")
  18.     alert("Please read the main movie script for instructions.  Also, you should rename the movie to be called memmon.  Then the movie should be opened from the message window.  It works best this way.   Use it to calculate data throughput off your CD Rom.  -Zav")
  19.     open(window(the movieName))
  20.     repeat with temp = 1 to count(the windowList)
  21.       if window(1).title = myMovie then
  22.         window("memmon").fileName = myMovie
  23.         forget(window(myMovie))
  24.         window("memmon").visible = 1
  25.       end if
  26.     end repeat
  27.   end if
  28. end
  29.  
  30. on InitGlobals
  31.   global gBar, gOtherBar, gStartCast, gEndCast, gStartFrame, gEndFrame, gLevel, gTemp, gTempo
  32.   gBar = 10
  33.   gOtherBar = 26
  34.   gStartCast = field("CastStart").value
  35.   gEndCast = field("CastEnd").value
  36.   gStartFrame = field("FrameStart").value
  37.   gEndFrame = field("FrameEnd").value
  38.   gTemp = 0
  39.   gTempo = 5
  40.   gLevel = 2
  41. end
  42.  
  43. on InitConditions
  44.   set the floatPrecision to 3
  45.   window("memmon").windowType = 49
  46.   put "-- Memmon v 2.44 by Alex Zavatone"
  47. end
  48.  
  49. on InitPuppets
  50.   global gBar
  51.   puppetSprite(gBar, 1)
  52.   puppetSprite(gOtherBar, 1)
  53.   puppetSprite(29, 1)
  54.   puppetSprite(30, 1)
  55.   puppetSprite(31, 1)
  56.   puppetSprite(32, 1)
  57.   puppetSprite(33, 1)
  58.   puppetSprite(34, 1)
  59. end
  60.  
  61. on DoMe
  62.   global gLevel
  63.   UpdateGraph()
  64.   if gLevel > 1 then
  65.     UpdateFields()
  66.   end if
  67. end
  68.  
  69. on UpdateGraph
  70.   global gBar, gOtherBar
  71.   if voidp(gBar) then
  72.     startMovie()
  73.   end if
  74.   set the height of sprite gBar to (cast("border").height * (the freeBytes * 1.0) / the memorysize) + 1.0
  75.   set the height of sprite gOtherBar to (cast("border").height * (the freeBlock * 1.0) / the memorysize) + 1.0
  76. end
  77.  
  78. on UpdateFields
  79.   put the memorysize & " = " & the memorysize / 1024 & "k" into field "memsize"
  80.   put the freeBytes & " = " & the freeBytes / 1024 & "k" into field "freebytes"
  81.   put the freeBlock & " = " & the freeBlock / 1024 & "k" into field "freeblock"
  82.   put the memorysize - the freeBytes & " = " & (the memorysize - the freeBytes) / 1024 & "k" into field "MemUsed"
  83. end
  84.  
  85. on GetValues
  86.   global gStartCast, gEndCast, gStartFrame, gEndFrame, gTemp
  87.   gStartCast = field("CastStart").value
  88.   gEndCast = field("CastEnd").value
  89.   gStartFrame = field("FrameStart").value
  90.   gEndFrame = field("FrameEnd").value
  91.   tell the stage
  92.     gTemp = the number of castMembers
  93.   end tell
  94.   if gEndCast > gTemp then
  95.     gEndCast = gTemp
  96.   end if
  97. end
  98.  
  99. on startTimer
  100.   return the ticks
  101. end
  102.  
  103. on PutTime now
  104.   delta = the ticks - now
  105.   put "ticks = " & delta into field "delta t"
  106.   put RETURN & "secs = " & delta / 60.0 after field "delta t"
  107.   return delta
  108. end
  109.  
  110. on InitTime
  111.   global gNow
  112.   gNow = the ticks
  113. end
  114.  
  115. on CheckTime
  116.   global gNow
  117.   put the ticks - gNow
  118. end
  119.  
  120. on GetStageCastSizes startcast, endcast, ignore
  121.   total = 0
  122.   if (startcast < 1) or (endcast < 1) then
  123.     alert("An attempt was made to get the size of an invalid castmember.  Check your input values.")
  124.     return 
  125.   end if
  126.   copyToClipboard(cast("GetCastSize script"))
  127.   tell the stage
  128.     pasteClipboardInto(cast(findEmpty(cast(1))))
  129.   end tell
  130.   if not ignore then
  131.     repeat with temp = startcast to endcast
  132.       tell the stage
  133.         GetCastSize(temp)
  134.       end tell
  135.       total = total + the result
  136.     end repeat
  137.   else
  138.   end if
  139.   return total
  140. end
  141.  
  142. on Throughput duration, total, ignore, freebytesAtStart
  143.   if not ignore then
  144.     if duration > 0 then
  145.       if total > freebytesAtStart then
  146.         total = freebytesAtStart
  147.         put "-- Alert: amount of data to load exceeds freebytes"
  148.       end if
  149.       put total / 1024 & "k" & RETURN & integer(10 * total / 1024 / (duration / 60.0)) / 10.0 & "kps" into field "Throughput"
  150.     else
  151.       put total / 1024 & "k" & RETURN & "-- kps" into field "Throughput"
  152.     end if
  153.   else
  154.     put "-- k" & RETURN & "-- kps" into field "Throughput"
  155.   end if
  156.   tell the stage
  157.     cast("GetCastSize script").scriptText = EMPTY
  158.   end tell
  159.   tell the stage
  160.     cast(the number of member "GetCastSize script").name = EMPTY
  161.   end tell
  162. end
  163.  
  164. on DoRight
  165.   set the castNum of sprite the clickOn to the number of member "Left"
  166.   wind = window("memmon")
  167.   leftSide = getAt(wind.rect, 1)
  168.   topSide = getAt(wind.rect, 2)
  169.   rightSide = getAt(wind.rect, 3)
  170.   bottomSide = getAt(wind.rect, 4)
  171.   wind.rect = rect(leftSide, topSide, rightSide + 128, bottomSide)
  172. end
  173.  
  174. on DoLeft
  175.   set the castNum of sprite the clickOn to the number of member "Right"
  176.   wind = window("memmon")
  177.   leftSide = getAt(wind.rect, 1)
  178.   topSide = getAt(wind.rect, 2)
  179.   rightSide = getAt(wind.rect, 3)
  180.   bottomSide = getAt(wind.rect, 4)
  181.   wind.rect = rect(leftSide, topSide, rightSide - 128, bottomSide)
  182. end
  183.  
  184. on DoUp arrow
  185.   if voidp(arrow) then
  186.     set the castNum of sprite the clickOn to the number of member "down"
  187.   else
  188.     set the castNum of sprite 29 to 0
  189.     updateStage()
  190.   end if
  191.   wind = window("memmon")
  192.   leftSide = getAt(wind.rect, 1)
  193.   topSide = getAt(wind.rect, 2)
  194.   rightSide = getAt(wind.rect, 3)
  195.   bottomSide = getAt(wind.rect, 4)
  196.   wind.rect = rect(leftSide, topSide, rightSide, bottomSide - 86)
  197. end
  198.  
  199. on DoDown arrow
  200.   if voidp(arrow) then
  201.     set the castNum of sprite the clickOn to the number of member "up"
  202.   else
  203.     set the castNum of sprite 29 to the number of member "up"
  204.   end if
  205.   wind = window("memmon")
  206.   leftSide = getAt(wind.rect, 1)
  207.   topSide = getAt(wind.rect, 2)
  208.   rightSide = getAt(wind.rect, 3)
  209.   bottomSide = getAt(wind.rect, 4)
  210.   wind.rect = rect(leftSide, topSide, rightSide, bottomSide + 86)
  211. end
  212.  
  213. on GetMainMovieName
  214.   global gMovie
  215.   tell the stage
  216.     gMovie = the movieName
  217.   end tell
  218.   put gMovie into field "Moviename"
  219. end
  220.  
  221. on ResetTabButtons
  222.   set the backColor of sprite 31 to 250
  223.   set the backColor of sprite 32 to 245
  224.   set the backColor of sprite 33 to 245
  225.   set the backColor of sprite 34 to 245
  226. end
  227.  
  228. on TurnOffDepthPuppets
  229.   repeat with temp = 13 to 17
  230.     puppetSprite(temp, 0)
  231.   end repeat
  232. end
  233.  
  234. on TurnOffVolumePuppets
  235.   repeat with temp = 35 to 40
  236.     puppetSprite(temp, 0)
  237.     puppetSprite(temp, 0)
  238.   end repeat
  239. end
  240.  
  241. on UpdateMeters
  242.   mainVolHeight = 64 - (9 * the soundLevel)
  243.   set the height of sprite 35 to mainVolHeight
  244.   set the locV of sprite 38 to 69 + mainVolHeight - 3
  245.   mainVolHeight = 64 - (0.251 * the volume of sound 1)
  246.   set the height of sprite 36 to mainVolHeight
  247.   set the locV of sprite 39 to 69 + mainVolHeight - 3
  248.   mainVolHeight = 64 - (0.251 * the volume of sound 2)
  249.   set the height of sprite 37 to mainVolHeight
  250.   set the locV of sprite 40 to 69 + mainVolHeight - 3
  251. end
  252.  
  253. on Memmon
  254.   go(1)
  255.   window("memmon").rect = window("memmon").sourceRect
  256.   open(window("memmon"))
  257. end
  258.  
  259. on InitTempoIndicator
  260.   global gTempo
  261.   puppetSprite(22, 0)
  262.   puppetSprite(22, 1)
  263.   set the locV of sprite 22 to the bottom of sprite 21 - (gTempo * 3) - 1
  264. end
  265.  
  266. on TurnOffTempoPuppets
  267.   puppetSprite(22, 0)
  268. end
  269.  
  270. on c
  271.   clearGlobals()
  272.   the windowList = []
  273. end
  274.